Product of distributions as variational family

I’m a beginner at Edward. I wonder if there’s a way to define the variational family of a random variable as the product of, say, unit Gaussian distributions with the same mean and variance? For example, how can I define qx = ∏ Normal(loc = a, scale = b), where a = tf.Variable(1.) and b = tf.Variable(1.)?

Best